home *** CD-ROM | disk | FTP | other *** search
/ PC World Interactive 7 / PC World Interactive 7.iso / program / ctutor.exe / SOURCE / CHRSTRG.C < prev    next >
C/C++ Source or Header  |  1994-05-15  |  534b  |  28 lines

  1.                               /* Chapter 7 - Program 1 - CHRSTRG.C */
  2. #include "stdio.h"
  3.  
  4. void main()
  5. {
  6. char name[5];       /* define a string of characters */
  7.  
  8.    name[0] = 'D';
  9.    name[1] = 'a';
  10.    name[2] = 'v';
  11.    name[3] = 'e';
  12.    name[4] = 0;     /* Null character - end of text */
  13.  
  14.    printf("The name is %s\n", name);
  15.    printf("One letter is %c\n", name[2]);
  16.    printf("Part of the name is %s\n", &name[1]);
  17. }
  18.  
  19.  
  20.  
  21. /* Result of execution
  22.  
  23. The name is Dave
  24. One letter is v
  25. Part of the name is ave
  26.  
  27. */
  28.